:root {
  --bg-red-dark: #2a0004;
  --bg-red: #7a0013;
  --bg-bright: #d1002f;
  --accent: #ff3b3b;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --text: #ececf2;
  --muted: #c7c7d0;
  --card-radius: 18px;
  --transition: 280ms cubic-bezier(.2, .9, .2, 1);
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: Inter, system-ui, Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(180deg, #1a0000 0%, #0a0000 100%);
}

html.no-js .reveal { opacity: 1; transform: translateY(0); }
#dynamic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(180deg, #1a0000 0%, #0a0000 100%);
}
.light-trail {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 42, 81, 0.4), transparent);
  animation: moveTrail 10s linear infinite;
}
.trail-1 { width: 100%; height: 2px; top: 20%; }
.trail-2 { width: 100%; height: 2px; top: 50%; animation-delay: 2s; }
.trail-3 { width: 100%; height: 2px; top: 80%; animation-delay: 4s; }
.spiral-trail {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.spiral-inner {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 42, 81, 0.3);
  border-radius: 50%;
  animation: spinSpiral 15s linear infinite;
}
.lens-flare {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 42, 81, 0.2), transparent);
  top: 30%;
  left: 70%;
  animation: flarePulse 5s ease-in-out infinite;
}
@keyframes moveTrail {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes spinSpiral {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes flarePulse {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(1); opacity: 0.2; }
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Topbar */
.topbar {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.topbar .center { display: flex; gap: 24px; align-items: center; color: var(--muted); flex-wrap: wrap; }
.topbar .social { display: flex; gap: 10px; }
.topbar .social a { color: var(--muted); font-size: 16px; }
.topbar .social a:hover { color: var(--accent); transform: translateY(-2px); }

/* Updated Navbar Styles - Fixed for Mobile */
header { position: sticky; top: 0; z-index: 1000; }
.navbar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.16));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 14px 0;
}
 /* HIDE TOPBAR ON MOBILE */
      .topbar { 
        display: none; 
      }
      :root {
        --topbar-height: 0px;
      }
.navbar:after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(255, 42, 81, 0.10), rgba(255, 255, 255, 0.04));
  animation: glowSlow 6s ease-in-out infinite;
}
@keyframes glowSlow {
  0% { transform: scale(0.995); opacity: 0.55; }
  50% { transform: scale(1.01); opacity: 0.8; }
  100% { transform: scale(0.995); opacity: 0.55; }
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  z-index: 1003;
}
.brand .logo {
  width: 106px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
}
.brand .title { font-weight: 800; font-size: 18px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  justify-content: center;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-links li { position: relative; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 160px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.nav-links li:hover .dropdown-content { display: flex; }
.nav-links .dropdown-content a {
  padding: 10px 15px;
  color: var(--muted);
  display: block;
}
.nav-links .dropdown-content a:hover {
  color: var(--text);
  background: rgba(255, 42, 81, 0.1);
}

/* Auth Buttons - Always Visible */
.auth-buttons {
  display: flex !important;
  gap: 12px;
  align-items: center;
  z-index: 1003;
  flex-shrink: 0;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1003;
  background: none;
  border: none;
  padding: 5px;
  margin-left: 10px;
}
.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 3px 0;
  transition: 0.4s;
  border-radius: 2px;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.auth-btn {
  display: inline-block !important;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent), #b3002a);
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 42, 81, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: Poppins, sans-serif;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.auth-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(45deg, #ff6a6a, var(--accent));
}
.auth-btn:before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06));
  filter: blur(10px);
  opacity: 0.85;
  transition: opacity .25s ease, transform .25s ease;
}
.auth-btn:hover:before {
  transform: scale(1.04);
  opacity: 1;
}

/* Mobile Styles - FIXED */
@media (max-width: 980px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    gap: 10px;
  }
  .brand {
    flex: 0 0 auto;
    order: 1;
  }
  .brand .logo { 
    width: 80px; 
    height: 42px; 
  }
  .brand .title { 
    font-size: 16px; 
  }
  .auth-buttons {
    display: flex !important;
    gap: 8px;
    align-items: center;
    z-index: 1003;
    flex: 0 0 auto;
    order: 2;
    margin-left: auto;
  }
  .auth-btn { 
    padding: 8px 12px !important; 
    font-size: 13px !important;
    min-width: 60px;
  }
  .menu-toggle { 
    display: flex !important;
    flex: 0 0 auto;
    order: 3;
  }
  .menu-toggle .bar { 
    width: 22px; 
    height: 2px; 
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    order: 4;
    flex-basis: 100%;
    justify-content: center;
    gap: 0;
  }
  .nav-links.active { 
    display: flex !important; 
  }
  .nav-links ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  .nav-links .dropdown-content {
    position: static;
    background: rgba(255, 42, 81, 0.1);
    border-radius: 0;
    box-shadow: none;
    display: none;
    margin: 0;
    padding: 0;
  }
  .nav-links .dropdown.active .dropdown-content {
    display: flex;
  }
  .nav-links .dropdown-content a {
    padding: 12px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .auth-buttons { 
    gap: 6px;
  }
  .auth-btn { 
    padding: 6px 10px !important; 
    font-size: 12px !important;
    min-width: 55px;
  }
  .brand .logo { 
    width: 70px; 
    height: 36px; 
  }
}

@media (max-width: 480px) {
  .navbar .container {
    padding: 0 8px;
    gap: 8px;
  }
  .auth-buttons { 
    gap: 4px;
  }
  .auth-btn { 
    padding: 5px 8px !important; 
    font-size: 11px !important;
    min-width: 50px;
  }
  .brand .logo { 
    width: 60px; 
    height: 32px; 
  }
}

/* Channel Sections */
.channel-section { padding: 40px 0; }
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  margin-bottom: 18px;
  justify-content: center;
  font-family: Poppins, sans-serif;
  color: var(--text);
  text-transform: capitalize;
}
.channel-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 15px;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.channel-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: calc(200%);
  animation: scrollChannels 30s linear infinite;
}
.channel-track img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 10px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.channel-track img:hover {
  transform: translateY(-8px) rotateX(4deg);
  box-shadow: 0 12px 30px rgba(255, 42, 81, 0.3);
}
.channel-track img:before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255, 42, 81, 0.06), rgba(255, 255, 255, 0.02));
  filter: blur(10px);
  opacity: 0.8;
  z-index: -1;
}
@keyframes scrollChannels {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.channel-slider:hover .channel-track {
  animation-play-state: paused;
}

    /* Footer Styling */
    .footer { background: linear-gradient(135deg, #000, var(--bg-red-dark), var(--bg-red)); color: var(--text); padding: 60px 20px 20px; font-family: Inter, system-ui, Arial, sans-serif; }
    .footer .container { max-width: 1200px; margin: auto; }
    .footer-box { background: var(--glass-strong); border: 1px solid var(--glass-border); border-radius: 12px; padding: 20px; backdrop-filter: blur(14px); position: relative; }
    .footer-box:before { content: ''; position: absolute; inset: -8px; border-radius: 20px; background: linear-gradient(90deg, rgba(255, 42, 81, 0.06), rgba(255, 255, 255, 0.02)); filter: blur(12px); opacity: 0.8; z-index: -1; }
    .footer-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: start; justify-content: center; }
    .footer-col { padding: 10px; }
    .footer-col h2.logo { font-size: 24px; font-weight: 800; margin-bottom: 15px; font-family: Poppins, sans-serif; }
    .footer-col h2.logo span { color: var(--accent); }
    .footer-col h4 { font-size: 18px; margin-bottom: 20px; position: relative; font-family: Poppins, sans-serif; color: var(--text); }
    .footer-col h4::after { content: ''; width: 40px; height: 3px; background: var(--accent); position: absolute; left: 0; bottom: -8px; }
    .footer-col p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 10px; }
    .footer-col ul { list-style: none; padding: 0; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { color: var(--muted); text-decoration: none; transition: color var(--transition); }
    .footer-col ul li a:hover { color: var(--text); }
    .footer form { display: flex; flex-direction: column; }
    .footer form input { padding: 12px 14px; border-radius: 10px; border: 1px solid var(--glass-border); background: rgba(0, 0, 0, 0.35); color: var(--text); margin-bottom: 10px; font-family: Inter, system-ui, Arial, sans-serif; }
    .footer form input:focus { outline: 2px solid rgba(255, 42, 81, 0.18); }
    .footer form button { padding: 12px 18px; border-radius: 10px; background: linear-gradient(180deg, var(--accent), #b3002a); border: none; color: #fff; font-weight: 800; cursor: pointer; transition: transform var(--transition), background var(--transition); font-family: Poppins, sans-serif; position: relative; }
    .footer form button:hover { transform: translateY(-6px); background: linear-gradient(45deg, #ff6a6a, var(--accent)); }
    .footer form button:before { content: ''; position: absolute; inset: -6px; border-radius: 12px; background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06)); filter: blur(12px); opacity: 0.85; transition: opacity .25s ease, transform .25s ease; z-index: -1; }
    .footer form button:hover:before { transform: scale(1.04); opacity: 1; }
    .social-links { margin-top: 15px; display: flex; gap: 10px; justify-content: flex-start; }
    .social-links a { color: var(--muted); font-size: 18px; transition: color var(--transition), transform var(--transition); }
    .social-links a:hover { color: var(--accent); transform: scale(1.2); }
    .footer-bottom { text-align: center; margin-top: 30px; border-top: 1px solid var(--glass-border); padding-top: 15px; font-size: 14px; }
    .footer-bottom span { color: var(--accent); }

    /* Floating WhatsApp Button */
    .whatsapp-float { 
      position: fixed; 
      width: 56px; 
      height: 56px; 
      bottom: 16px; 
      right: 16px; 
      background: linear-gradient(180deg, var(--accent), #b3002a); 
      color: var(--text); 
      border-radius: 50%; 
      text-align: center; 
      font-size: 28px; 
      box-shadow: 0 8px 24px rgba(255, 42, 81, 0.2); 
      z-index: 1000; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      animation: bounce 2.2s ease-in-out infinite; 
      transition: transform var(--transition), box-shadow var(--transition);
      text-decoration: none; 
    }
    .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(255, 42, 81, 0.3); }
    .whatsapp-float i { line-height: 56px; }
    .whatsapp-float:before { 
      content: ''; 
      position: absolute; 
      inset: 0; 
      border-radius: 50%; 
      background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06)); 
      filter: blur(10px); 
      opacity: 0; 
      transition: opacity .25s ease, transform .25s ease; 
      z-index: -1; 
    }
    .whatsapp-float:hover:before { transform: scale(1.04); opacity: 0.85; }
    @keyframes bounce { 
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 
      40% { transform: translateY(-8px); } 
      60% { transform: translateY(-4px); } 
    }

    
    @media (max-width: 768px) {
      .container { max-width: 720px; }
      .hero { height: 50vh; }
      .slider-cta .btn { font-size: 14px; padding: 10px 16px; }
      .section-title { font-size: 1.8rem; }
      .feature-left h2 { font-size: 28px; }
      .feature-left img { max-width: 100%; }
      .left-text h2 { font-size: 28px; }
      .left-text p { font-size: 16px; }
      .testimonial-card img { width: 50px; height: 50px; }
      .testimonial-card p { font-size: 14px; }
      .partners-title { font-size: 1.8rem; }
      .partners-track img { height: 60px; margin: 0 20px; }
      .stat-box h3 { font-size: 1.8rem; }
      .stat-box p { font-size: 0.9rem; }
      .stat-icon { width: 80px; height: 80px; }
      .stat-icon img { width: 40px; height: 40px; }
      .movie-slider { height: 300px; }
      .movie-info h3 { font-size: 1.4rem; }
      .nav-btn { font-size: 18px; padding: 10px; }
      .footer { padding: 40px 15px 15px; }
      .footer-row { grid-template-columns: 1fr; text-align: center; }
      .footer-col h4::after { left: 50%; transform: translateX(-50%); }
      .social-links { justify-content: center; }
    }
    @media (max-width: 600px) {
      .container { max-width: 100%; padding: 0 15px; }
      .hero { height: 45vh; }
      .section-title { font-size: 1.6rem; }
      .feature-left h2 { font-size: 24px; }
      .left-text h2 { font-size: 24px; }
      .left-text p { font-size: 14px; }
      .search-row input { width: 100%; max-width: 280px; }
      .btn { padding: 10px 16px; font-size: 14px; }
      .movie-slider { height: 250px; }
      .movie-info h3 { font-size: 1.3rem; }
      .nav-btn { font-size: 16px; padding: 8px; }
      .team-card img { width: 100px; height: 100px; }
      .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 15px; right: 15px; }
      .footer-col h4 { font-size: 16px; }
      .footer form input { padding: 10px; }
      .footer form button { padding: 10px 12px; font-size: 14px; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 10px; }
      .hero { height: 40vh; }
      .section-title { font-size: 1.4rem; }
      .feature-left h2 { font-size: 20px; }
      .left-text h2 { font-size: 20px; }
      .partners-title { font-size: 1.5rem; }
      .partners-track img { height: 50px; margin: 0 15px; }
      .stat-box h3 { font-size: 1.5rem; }
      .movie-slider { height: 200px; }
      .nav-btn { font-size: 14px; padding: 6px; }
      .whatsapp-float { width: 60px; height: 60px; font-size: 30px; bottom: 10px; right: 10px; }
      .whatsapp-float i { line-height: 40px; }
      .brand .logo { width: 150px; height: 32px; }
      .brand .title { font-size: 16px; }
    }